home *** CD-ROM | disk | FTP | other *** search
/ CD/PC Actual 22 / PC Actual CD 22.iso / SHARE / prog / POVRAY / FRYANEGG.ZIP / TEST-3.POV < prev    next >
Encoding:
Text File  |  1996-08-31  |  1.7 KB  |  54 lines

  1.  
  2. //------------------------------------------------------------------->
  3. //------------------------------------------------------------------->
  4. //
  5. // "test-3.pov" - Test the little car.
  6. //
  7. // Created by: Paul T. Dawson
  8. //             ptdawson@voicenet.com
  9. //             http://www.voicenet.com/~ptdawson
  10. //
  11. //------------------------------------------------------------------->
  12. //------------------------------------------------------------------->
  13.  
  14.         #include "colors.inc"
  15.         #include "textures.inc"
  16.         #include "golds.inc"
  17.         #include "woods.inc"
  18.         #default { finish { Shiny } }
  19.  
  20.         #declare Which_Camera = 2
  21.  
  22.         #if ( Which_Camera = 1 )
  23.                 camera { location < 12*12, 4*12, 3*12 >
  24.                 look_at < 0, 1*12, 6*12 > }
  25.         #end
  26.  
  27.         #if ( Which_Camera = 2 )
  28.                 camera { location < 60, 3*12, -5*12 >
  29.                 look_at < 30, 1*12, 6*12 > }
  30.         #end
  31.  
  32.         light_source { < -1000, 1000, -1000 > color White }
  33.         light_source { <     0, 1000, -1000 > color White }
  34.         light_source { <  1000, 1000, -1000 > color White }
  35.         light_source { <  1000,   60,   144 > color White }
  36.         light_source { <     0,   20,  -144 > color White }
  37.  
  38.         background { White }
  39.  
  40. //------------------------------------------------------------------->
  41. //------------------------------------------------------------------->
  42. //
  43. // Load the include file and show the car.
  44.  
  45.         #include "car-1.inc"
  46.  
  47.         object { One_Mysterious_Car }
  48.  
  49. //------------------------------------------------------------------->
  50. //------------------------------------------------------------------->
  51. //
  52. // End of this file.
  53.  
  54.